home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000437_news@columbia.edu_Mon May 22 14:05:19 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12106
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 22 May 1995 10:05:28 -0400
  3. Received: by apakabar.cc.columbia.edu id AA28448
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 22 May 1995 10:05:25 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: SERIAL PC-to-SPARC PROBLEM(s)
  9. Date: 22 May 1995 14:05:19 GMT
  10. Organization: Columbia University
  11. Lines: 61
  12. Message-Id: <3pq5mv$roq@apakabar.cc.columbia.edu>
  13. References: <NEWTNews.801078033.4616.tbev@tbev.earthlink.net>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <NEWTNews.801078033.4616.tbev@tbev.earthlink.net>,
  18.  <tbev@earthlink.net> wrote:
  19. : I'm a reasonably experienced KERMIT user and have successfully connected PC
  20. : together via serial cables, but have encountered some problems when trying
  21. : to link a PC to a Sparc station with a direct serial connection.
  22. : Here's the context:
  23. : I have MS-KERMIT 3.14 on my PC running WFW 3.11 and C-KERMIT (190) 5A on my 
  24. : Sparc running SUN OS 4.1.4.
  25. : The db-25 male cable ends from both the PC and Sparc cables have each been
  26. : individually (and successfully) connected to a modem and then Kermit used as
  27. : a terminal to various BBS systems.  This would seem to verify the integrity
  28. : of the two computer cables as well as the respective Kermit to machine port
  29. : paths.
  30. : When trying to use Kermit to connect my PC to my Sparc I did the following:
  31. : 1) I set both PC and Sparc kermits to 9600, modem=none/direc, and RTS/DTS.
  32. :    My PC is using COM2, my Sparc /etc/ttya.
  33. : 2) I connected the two db-25/male cable ends from the PC and Sparc serial
  34. :    cables together with 1) a 25 pin straight through gender changer, i.e.
  35. :    a module having two female db-25 connectors wired pin-to-pin.
  36. This could never work.
  37.  
  38. : 3) Thinking I had wired both machines directly, I then added a null-modem
  39. :    adapter to te db-25 gender changer mentioned in (2) above.  I got the
  40. :    same results.
  41. This should have made it work.
  42.  
  43. The method for directly connecting two computers back to back is
  44. documented in detail in all three Kermit books, including diagrams, etc.
  45. The most common mistake, for me at least, is mistaking a gender changer
  46. for a null modem or vice versa -- many of mine are not labeled.  Another
  47. common mistake is mistaking a modem cable for a terminal cable, but you
  48. already checked for that.
  49.  
  50. Assuming your hookup is physically correct, I can only guess that you did
  51. not give the right sequence commands to C-Kermit.  You should have given
  52. the following commands in exactly this order, as documented in "Using
  53. C-Kermit":
  54.  
  55.   set modem none
  56.   set line /dev/ttya
  57.   set speed 9600
  58.   set flow rts/cts
  59.   set duplex half      ; You need local echo for "chat" connections.
  60.   set term newline on  ; You also need this for chatting.
  61.   connect
  62.  
  63. Finally, if you want to log in on your Sun from the PC, then you have
  64. to enable logins on the Sun port.  See your Sun documentation for how to
  65. do this.
  66.  
  67. If you have any further trouble, send email direct to kermit@columbia.edu.
  68.  
  69. - Frank